home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
PTRP10
/
TEST10.TRP
< prev
next >
Wrap
Text File
|
1994-05-16
|
296b
|
14 lines
procedure main
var
f : text = "test10.trp"
s : string
endvar
if (reset(f) = 0)
while (not eof(f))
readln(f, s)
writeln(s)
endwhile
close(f)
endif
endproc